projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0113da4
)
Drop a redundant call
author
Matthias Clasen
<mclasen@redhat.com>
Fri, 1 May 2015 02:42:49 +0000
(22:42 -0400)
committer
Matthias Clasen
<mclasen@redhat.com>
Fri, 1 May 2015 02:43:50 +0000
(22:43 -0400)
g_thread_supported() is always TRUE nowadays, so drop the call.
gtk/gtksearchengine.c
patch
|
blob
|
history
diff --git
a/gtk/gtksearchengine.c
b/gtk/gtksearchengine.c
index 51b4c5841397e0b39695e79a2de367f8b66979cb..007b888c00518fa957b7c7c4f66afd4fcbac2c80 100644
(file)
--- a/
gtk/gtksearchengine.c
+++ b/
gtk/gtksearchengine.c
@@
-115,11
+115,8
@@
_gtk_search_engine_new (void)
}
#endif
- if (g_thread_supported ())
- {
- g_debug ("Using simple search engine");
- engine = _gtk_search_engine_simple_new ();
- }
+ g_debug ("Using simple search engine");
+ engine = _gtk_search_engine_simple_new ();
return engine;
}